home *** CD-ROM | disk | FTP | other *** search
/ Comix Games / Comix Games.iso / waldo / waldo.exe / FINAL08.DXR / 00259.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  814 b   |  31 lines

  1. global gProjectorInUse
  2.  
  3. on startMoviePrefs
  4.   set the centerStage to 1
  5.   if the colorDepth < 8 then
  6.     set the colorDepth to 8
  7.   end if
  8.   if the colorDepth > 8 then
  9.     set x to "Excuse me, but you need to reset your monitor to 256 colors before continuing."
  10.     alert(x)
  11.     if not (the shiftDown) then
  12.       quit()
  13.       exit
  14.     end if
  15.   end if
  16.   if the machineType <> 256 then
  17.     if not (the quickTimePresent) then
  18.       set x to "Excuse me, but I couldn't find the QuickTime extension in your System Folder."
  19.       set x to x & RETURN & RETURN & "Please install the QuickTime extension and restart your Macintosh."
  20.       alert(x)
  21.       if not (the shiftDown) then
  22.         quit()
  23.         exit
  24.       end if
  25.     end if
  26.     initRearWindow()
  27.     fillWithSpecificColor(255)
  28.   end if
  29.   set gProjectorInUse to 1
  30. end
  31.